.amp-map-page {
    width: min(1800px, calc(100% - 2rem));
    max-width: none;
    margin: 1.5rem auto 2rem;
    position: relative;
    z-index: 100;
}

.amp-map-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.amp-map-heading h1 {
    margin: 0;
    color: #f4f7fb;
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.amp-map-heading p {
    margin: .35rem 0 0;
    color: rgba(228, 235, 245, .72);
}

.amp-map-fullscreen-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    flex: 0 0 auto;
    min-height: 42px;
    padding: .65rem 1rem;
    border: 1px solid rgba(72, 160, 236, .45);
    border-radius: 10px;
    background: rgba(18, 38, 64, .82);
    color: #8dcbff;
    text-decoration: none;
    transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}

.amp-map-fullscreen-link:hover,
.amp-map-fullscreen-link:focus {
    border-color: rgba(112, 193, 255, .9);
    background: rgba(30, 70, 112, .9);
    color: #fff;
    text-decoration: none;
}

.amp-map-shell {
    position: relative;
    overflow: hidden;
    height: clamp(640px, calc(100vh - 210px), 1100px);
    min-height: 640px;
    border: 1px solid rgba(91, 142, 193, .4);
    border-radius: 14px;
    background: #07111d;
    box-shadow: 0 18px 52px rgba(0, 0, 0, .36);
}

.amp-map-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #07111d;
}

@media (max-width: 767.98px) {
    .amp-map-page {
        width: calc(100% - 1rem);
        margin-top: .75rem;
    }

    .amp-map-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .amp-map-heading p {
        font-size: .92rem;
    }

    .amp-map-fullscreen-link {
        align-self: flex-start;
    }

    .amp-map-shell {
        height: 76svh;
        min-height: 520px;
        border-radius: 10px;
    }
}
